home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / c / icu-1.3.1 / icu-bin / include / umisc.h < prev    next >
C/C++ Source or Header  |  2000-02-23  |  1KB  |  39 lines

  1. /*
  2. *******************************************************************************
  3. *                                                                             *
  4. * COPYRIGHT:                                                                  *
  5. *   (C) Copyright International Business Machines Corporation, 1999           *
  6. *   Licensed Material - Program-Property of IBM - All Rights Reserved.        *
  7. *   US Government Users Restricted Rights - Use, duplication, or disclosure   *
  8. *   restricted by GSA ADP Schedule Contract with IBM Corp.                    *
  9. *                                                                             *
  10. *******************************************************************************
  11. *   file name:  umisc.h
  12. *   encoding:   US-ASCII
  13. *   tab size:   8 (not used)
  14. *   indentation:4
  15. *
  16. *   created on: 1999oct15
  17. *   created by: Markus W. Scherer
  18. */
  19.  
  20. #ifndef UMISC_H
  21. #define UMISC_H
  22.  
  23. #include "utypes.h"
  24.  
  25. /* This file contains miscellaneous definitions for the C APIs. */
  26.  
  27. /** A struct representing a range of text containing a specific field */
  28. struct UFieldPosition {
  29.   /** The field */
  30.   int32_t field;
  31.   /** The start of the text range containing field */
  32.   int32_t beginIndex;
  33.   /** The limit of the text range containing field */
  34.   int32_t endIndex;
  35. };
  36. typedef struct UFieldPosition UFieldPosition;
  37.  
  38. #endif
  39.